home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Nave
/
Monkey Lander.swf
/
scripts
/
frame_93
/
PlaceObject2_422_562
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-06-13
|
421 b
|
20 lines
onClipEvent(enterFrame){
if(_root.lives < 3)
{
if(_root.lives == 2)
{
this.gotoAndStop("two");
}
else if(_root.lives == 1)
{
this.gotoAndStop("one");
}
else if(_root.lives < 1 and _root.gameOver != true)
{
this.gotoAndStop("zero");
_parent.gotoAndPlay("gameOver");
_root.gameOver = true;
}
}
}